home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_show / animal / chien.e < prev    next >
Text File  |  2000-03-25  |  136b  |  13 lines

  1. class CHIEN
  2.  
  3. inherit QUADRUPEDE;
  4.  
  5. feature {ANY}
  6.  
  7.    crier is
  8.       do
  9.          std_output.put_string("OUARF");
  10.       end;
  11.  
  12. end -- CHIEN
  13.